home *** CD-ROM | disk | FTP | other *** search
/ Hardcore Visual Basic 5.0 (2nd Edition) / Hardcore Visual Basic 5.0 - Second Edition (1997)(Microsoft Press).iso / Source / Cpp4VB / WINTLB / INTRFACE.ODL < prev    next >
Text File  |  1996-04-26  |  439b  |  18 lines

  1. #ifndef __midl
  2. #ifdef WIN32
  3. [
  4. uuid(54674062-3A82-101B-8181-00AA003743D3),
  5. odl,
  6. helpstring("Malloc interface pointer"),
  7. ] // Can't use dual or oleautomation because of non HRESULT returns
  8. interface IMalloc : IUnknown {
  9.    long Alloc([in] long cb);
  10.    void Free([in] long pv);
  11.    long Realloc([in] long pv, [in] long cb);
  12.    long GetSize([in] long pv);
  13.    int DidAlloc([in] long pv);
  14.    void HeapMinimize();
  15. }
  16. #endif
  17. #endif
  18.